home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / mui / modula / compilerscript next >
Text File  |  1994-06-29  |  606b  |  29 lines

  1. ; this is a little script which will compile the M2-Interface and copy
  2. ; the stuff to m2:modules
  3. ; it will use your compiler-options as they are set in your environment
  4. ; variable m2c
  5. ;
  6. ; This was written on the fly by Christian Scholz on 26.10.1993
  7. ; updated 4.2.94 for MuiClasses.def
  8. ;
  9.  
  10. ; first compile the interface
  11.  
  12. echo "Compiling the interface..."
  13.  
  14. m2make -x-d-q -c+oMUIObsolete MuiMacros
  15. m2make -x-d-q MuiClasses
  16.  
  17. ; now copy the stuff to m2:modules
  18.  
  19. echo "copying the interface to m2:modules..."
  20.  
  21. copy sym/#?.sym to m2:modules/sym
  22. copy obj/#?.obj to m2:modules/obj
  23.  
  24. echo "finished!"
  25.  
  26. ; Terminate!
  27.  
  28.  
  29.